[USER (data scientist)]: Great! Can you give me the client IDs with multiple existing credits and high installment commitments? Please generate an Index object containing the indices of customers with multiple credits and high commitment.
My template of code snippet is:

---BEGIN CODE TEMPLATE---

import pandas as pd 
import pickle
from decision_company import read_csv_file, 

# please import the necessary private functions from decision_company first

# Load the dataset 
credit_customers = read_csv_file("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
<code1>
[COMPLETE YOUR CODE] 
</code1>
# YOUR SOLUTION END

print(f"multiple_credits_high_commitment_idx: {result}") 

# save data
pickle.dump(result, open("./pred_result/multiple_credits_high_commitment_idx.pkl","wb"))

---END CODE TEMPLATE---

[YOU (AI assistant)]: No problem! Here's the code to get those client IDs:
'''
import pandas as pd 
import pickle
from decision_company import read_csv_file, 

# please import the necessary private functions from decision_company first

# Load the dataset 
credit_customers = read_csv_file("credit_customers.csv") 
 
# YOUR SOLUTION BEGIN:
